home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / RKMLibsPrgs / graphics_libraries / primitives / UserCopperExample.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  7KB  |  245 lines

  1. /*  UserCopperExample.c
  2.     User Copper List Example
  3.     For SAS/C 5.10a,
  4.     compile with:  LC -b1 -cfist -L -v -y UserCopperExample.c
  5.     link with lc.lib and amiga.lib
  6.  
  7.  
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.  
  33. #include <exec/types.h>
  34. #include <exec/memory.h>
  35. #include <graphics/gfxbase.h>
  36. #include <graphics/gfxmacros.h>
  37. #include <graphics/copper.h>
  38. #include <graphics/videocontrol.h>
  39. #include <intuition/intuition.h>
  40. #include <intuition/preferences.h>
  41. #include <hardware/custom.h>
  42. #include <libraries/dos.h>
  43.  
  44. #include <clib/exec_protos.h>        /*  Prototypes.  */
  45. #include <clib/graphics_protos.h>
  46. #include <clib/intuition_protos.h>
  47. #include <clib/dos_protos.h>
  48.  
  49. #include <stdlib.h>
  50.  
  51. /*  Use this structure to gain access to the custom registers.  */
  52. extern struct Custom far custom;
  53.  
  54. /*  Global variables.  */
  55. struct GfxBase        *GfxBase = NULL;
  56. struct IntuitionBase  *IntuitionBase = NULL;
  57. struct Screen         *screen = NULL;
  58. struct Window         *window = NULL;
  59.  
  60. VOID main( VOID ), cleanExit( WORD );
  61. WORD openAll( VOID ), loadCopper( VOID );
  62.  
  63.  
  64. /*
  65.  *   The main() routine -- just calls subroutines
  66.  */
  67. VOID main( VOID )
  68. {
  69. WORD ret_val;
  70. struct IntuiMessage    *intuiMessage;
  71.  
  72.     /*  Open the libraries, a screen and a window.  */
  73.     ret_val = openAll();
  74.     if (RETURN_OK == ret_val)
  75.     {
  76.         /*  Create and attach the user Copper list.  */
  77.         ret_val = loadCopper();
  78.         if (RETURN_OK == ret_val)
  79.         {
  80.             /*  Wait until the user clicks in the close gadget.  */
  81.             (VOID) Wait(1<<window->UserPort->mp_SigBit);
  82.  
  83.             while (intuiMessage = (struct IntuiMessage *)GetMsg(window->UserPort))
  84.                     ReplyMsg((struct Message *)intuiMessage);
  85.         }
  86.     }
  87.     cleanExit(ret_val);
  88. }
  89.  
  90.  
  91. /*
  92.  * openAll() -- opens the libraries, screen and window
  93.  */
  94. WORD openAll( VOID )
  95. {
  96. #define MY_WA_WIDTH 270    /*  Width of window.  */
  97.  
  98.     WORD ret_val = RETURN_OK;
  99.  
  100.     /*  Prepare to explicitly request Topaz 60 as the screen font.  */
  101.     struct TextAttr topaz60 =
  102.     {
  103.         (STRPTR)"topaz.font",
  104.         (UWORD)TOPAZ_SIXTY, (UBYTE)0, (UBYTE)0
  105.     };
  106.  
  107.     GfxBase = (struct GfxBase *)OpenLibrary("graphics.library", 37L);
  108.     if (GfxBase == NULL)
  109.         ret_val = ERROR_INVALID_RESIDENT_LIBRARY;
  110.     else
  111.     {
  112.         IntuitionBase = (struct IntuitionBase *)
  113.             OpenLibrary("intuition.library", 37L);
  114.  
  115.         if (IntuitionBase == NULL)
  116.             ret_val = ERROR_INVALID_RESIDENT_LIBRARY;
  117.         else
  118.         {
  119.             screen = OpenScreenTags( NULL,
  120.                      SA_Overscan, OSCAN_STANDARD,
  121.                      SA_Title,    "User Copper List Example",
  122.                      SA_Font,     (ULONG)&topaz60,
  123.                      TAG_DONE);
  124.  
  125.             if (NULL == screen)
  126.                 ret_val = ERROR_NO_FREE_STORE;
  127.             else
  128.             {
  129.                 window = OpenWindowTags( NULL,
  130.                          WA_CustomScreen, screen,
  131.                          WA_Title,        "<- Click here to quit.",
  132.                          WA_IDCMP,        CLOSEWINDOW,
  133.                          WA_Flags,        WINDOWDRAG|WINDOWCLOSE|INACTIVEWINDOW,
  134.                          WA_Left,         (screen->Width-MY_WA_WIDTH)/2,
  135.                          WA_Top,          screen->Height/2,
  136.                          WA_Height,       screen->Font->ta_YSize + 3,
  137.                          WA_Width,        MY_WA_WIDTH,
  138.                          TAG_DONE);
  139.  
  140.                 if (NULL == window)
  141.                     ret_val = ERROR_NO_FREE_STORE;
  142.             }
  143.         }
  144.     }
  145.  
  146.     return(ret_val);
  147. }
  148.  
  149.  
  150. /*
  151.  * loadCopper() -- creates a Copper list program and adds it to the system
  152.  */
  153. WORD loadCopper( VOID )
  154. {
  155. register USHORT   i, scanlines_per_color;
  156.          WORD     ret_val    = RETURN_OK;
  157. struct   ViewPort *viewPort;
  158. struct   UCopList *uCopList  = NULL;
  159. struct   TagItem  uCopTags[] =
  160.           {
  161.                 { VTAG_USERCLIP_SET, NULL },
  162.                 { VTAG_END_CM, NULL }
  163.           };
  164.  
  165. UWORD    spectrum[] =
  166.           {
  167.                 0x0604, 0x0605, 0x0606, 0x0607, 0x0617, 0x0618, 0x0619,
  168.                 0x0629, 0x072a, 0x073b, 0x074b, 0x074c, 0x075d, 0x076e,
  169.                 0x077e, 0x088f, 0x07af, 0x06cf, 0x05ff, 0x04fb, 0x04f7,
  170.                 0x03f3, 0x07f2, 0x0bf1, 0x0ff0, 0x0fc0, 0x0ea0, 0x0e80,
  171.                 0x0e60, 0x0d40, 0x0d20, 0x0d00
  172.           };
  173.  
  174. #define NUMCOLORS 32
  175.  
  176.     /*  Allocate memory for the Copper list.  */
  177.     /*  Make certain that the initial memory is cleared.  */
  178.     uCopList = (struct UCopList *)
  179.         AllocMem(sizeof(struct UCopList), MEMF_PUBLIC|MEMF_CLEAR);
  180.  
  181.     if (NULL == uCopList)
  182.         ret_val = ERROR_NO_FREE_STORE;
  183.     else
  184.     {
  185.         /*  Initialize the Copper list buffer.  */
  186.         CINIT(uCopList, NUMCOLORS);
  187.  
  188.         scanlines_per_color = screen->Height/NUMCOLORS;
  189.  
  190.         /*  Load in each color.  */
  191.         for (i=0; i<NUMCOLORS; i++)
  192.             {
  193.             CWAIT(uCopList, (i*scanlines_per_color), 0);
  194.             CMOVE(uCopList, custom.color[0], spectrum[i]);
  195.             }
  196.  
  197.         CEND(uCopList);    /*  End the Copper list  */
  198.  
  199.         viewPort = ViewPortAddress(window);    /*  Get a pointer to the ViewPort.  */
  200.         Forbid();    /*  Forbid task switching while changing the Copper list.  */
  201.         viewPort->UCopIns=uCopList;
  202.         Permit();    /*  Permit task switching again.  */
  203.  
  204.         /*  Enable user copper list clipping for this ViewPort.  */
  205.         (VOID) VideoControl( viewPort->ColorMap, uCopTags );
  206.  
  207.         RethinkDisplay();    /*  Display the new Copper list.  */
  208.  
  209.         return(ret_val);
  210.     }
  211. }
  212.  
  213.  
  214. /*
  215.  *  cleanExit() -- returns all resources that were used.
  216.  */
  217. VOID cleanExit( WORD retval )
  218. {
  219. struct ViewPort *viewPort;
  220.  
  221. if (NULL != IntuitionBase)
  222. {
  223.     if (NULL != screen)
  224.     {
  225.         if (NULL != window)
  226.         {
  227.             viewPort = ViewPortAddress(window);
  228.             if (NULL != viewPort->UCopIns)
  229.             {
  230.                 /*  Free the memory allocated for the Copper.  */
  231.                 FreeVPortCopLists(viewPort);
  232.                 RemakeDisplay();
  233.             }
  234.             CloseWindow(window);
  235.         }
  236.         CloseScreen(screen);
  237.     }
  238.     CloseLibrary((struct Library *)IntuitionBase);
  239. }
  240.  
  241. if (NULL != GfxBase)
  242.     CloseLibrary((struct Library *)GfxBase);
  243.  
  244. exit((int)retval);
  245. }